home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / Syn Text Editor 2.1.0.46 / synsetup-2.1.0.46.exe / {app} / templates / Pascal / Pascal Class.pas < prev    next >
Pascal/Delphi Source File  |  2003-08-13  |  656b  |  41 lines

  1. {Description: Pascal Unit with Class declaration and Create/Destroy|}
  2. {
  3.   Created: {$DateTime} by {$UserName}
  4.  
  5.   $Id: Pascal\040Class.pas,v 1.1.2.3 2003/08/13 00:38:45 neum Exp $
  6. }
  7.  
  8. unit {$FileTitleNoExt};
  9.  
  10. interface
  11.  
  12. type
  13.   T{$FileTitleNoExt} = class
  14.   private
  15.     { Private Declarations }
  16.   protected
  17.     { Protected Declarations }
  18.   public
  19.     { Public Declarations }
  20.     constructor Create;
  21.     destructor Destroy; override;
  22.   end;
  23.  
  24. implementation
  25.  
  26. constructor T{$FileTitleNoExt}.Create;
  27. begin
  28.   inherited;
  29. end;
  30.  
  31. destructor T{$FileTitleNoExt}.Destroy;
  32. begin
  33.   inherited;
  34. end;
  35.  
  36. initialization
  37.  
  38. finalization
  39.  
  40. end.
  41.